home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Explore Yellowstone
/
Explore Yellowstone (1997)(The Learning Company)[PC-Mac].iso
/
mac
/
GUIDEART.DIR
/
00006_Script_fr loop6
< prev
next >
Wrap
Text File
|
1996-02-29
|
588b
|
22 lines
on exitFrame
-- if rollOver changes, set SeeAlso item to plain again
global ThisItem
if rollover (14) then
set the ItemDelimiter = ";" -- *** ";" *** used on new Text01.TXT
put the mouseItem into WhichItem
if WhichItem = ThisItem then
go to the frame
else
set the TextStyle of item ThisItem of field "SeeAlso" to "plain"
-- set the ItemDelimiter = "/"
go to "Loop5"
end if
else
set the TextStyle of field "SeeAlso" to "plain"
set the ItemDelimiter = "/"
go to "Loop5"
end if
end